home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2005 October
/
PCWOCT05.iso
/
Software
/
FromTheMag
/
XAMPP 1.4.14
/
xampp-win32-1.4.14-installer.exe
/
xampp
/
php
/
pear
/
MDB
/
QueryTool.php
< prev
next >
Wrap
PHP Script
|
2004-03-24
|
2KB
|
53 lines
<?php
// +----------------------------------------------------------------------+
// | PHP Version 4 |
// +----------------------------------------------------------------------+
// | Copyright (c) 1997-2003 The PHP Group |
// +----------------------------------------------------------------------+
// | This source file is subject to version 2.02 of the PHP license, |
// | that is bundled with this package in the file LICENSE, and is |
// | available at through the world-wide-web at |
// | http://www.php.net/license/2_02.txt. |
// | If you did not receive a copy of the PHP license and are unable to |
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
// | Author: Lorenzo Alberton <l.alberton at quipo.it> |
// +----------------------------------------------------------------------+
//
// $Id: QueryTool.php,v 1.4 2004/03/18 10:24:53 quipo Exp $
//
// This is just a port of DB_QueryTool, originally written by
// Wolfram Kriesing and Paolo Panto, vision:produktion <wk@visionp.de>
// All the praises go to them :)
//
require_once 'MDB/QueryTool/EasyJoin.php';
/**
* this class should be extended
* This class is here to make it easy using the base
* class of the package by it's package name.
* Since I tried to seperate the functionality a bit inside the
* really working classes i decided to have this class here just to
* provide the name, since the functionality inside the other
* classes might be restructured a bit but this name always stays.
*
* @package MDB_QueryTool
* @version 2002/04/02
* @access public
* @author Lorenzo Alberton <l.alberton at quipo.it>
*/
class MDB_QueryTool extends MDB_QueryTool_EasyJoin
{
/**
* call parent constructor
* @param mixed $dsn DSN string, DSN array or MDB object
* @param array $options
*/
function MDB_QueryTool($dsn=false, $options=array())
{
parent::__construct($dsn, $options);
}
}
?>